﻿namespace Lightbug.CharacterControllerPro.Implementation
{
    public interface IUIBoolAction : IUIAction
    {
        bool BoolValue { get; }
    }
}

